home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- import java.io.Serializable;
-
- public class Insets implements Cloneable, Serializable {
- public int top;
- public int left;
- public int bottom;
- public int right;
-
- public Insets(int var1, int var2, int var3, int var4) {
- this.top = var1;
- this.left = var2;
- this.bottom = var3;
- this.right = var4;
- }
-
- public String toString() {
- return this.getClass().getName() + "[top=" + this.top + ",left=" + this.left + ",bottom=" + this.bottom + ",right=" + this.right + "]";
- }
-
- public Object clone() {
- try {
- return super.clone();
- } catch (CloneNotSupportedException var1) {
- throw new InternalError();
- }
- }
- }
-